home *** CD-ROM | disk | FTP | other *** search
/ Oh!X 2000 Spring / Oh!X 2000 Spring Special CD-ROM (Japan) (Part 2).7z / Oh!X 2000 Spring Special CD-ROM (Japan) (Part 2).bin / DXF / samples / multimedia / dplay / src / duel / ddutil.h < prev    next >
C/C++ Source or Header  |  1999-03-09  |  705b  |  19 lines

  1. //-----------------------------------------------------------------------------
  2. // File: DDutil.h
  3. //
  4. // Desc: Routines for loading bitmap and palettes from resources
  5. //
  6. // Copyright (C) 1995-1999 Microsoft Corporation. All Rights Reserved.
  7. //-----------------------------------------------------------------------------
  8. #include <tchar.h>
  9.  
  10. LPDIRECTDRAWPALETTE DDUtil_LoadPalette( LPDIRECTDRAW pDD, TCHAR* strBitmap );
  11. HRESULT DDUtil_CopyBitmap( LPDIRECTDRAWSURFACE pdds, HBITMAP hbm, 
  12.                            int x, int y, int dx, int dy );
  13. DWORD   DDUtil_ColorMatch( LPDIRECTDRAWSURFACE pdds, COLORREF rgb );
  14. HRESULT DDUtil_SetColorKey( LPDIRECTDRAWSURFACE pdds, COLORREF rgb );
  15.  
  16.  
  17.  
  18.  
  19.